## Isomorphism between two representations of F_8

from PyM import *


Z2 = Zn(2)

[_,X] = polynomial_ring(Z2,'X')

[F8a,a] = extension(Z2, X**3+X**2+1,'a') 

f = X**3 + X + 1

R = roots(f,F8a)

show(R)

